This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Couple ways to do it ~Umberto Nongeroson 4.Dec.03 05:30 PM a Web browser Domino Administrator 6.0.2 CF2All Platforms
The easiest (but not most efficient) way to do this is to periodically call an agent from the web (via ?openagent) which issues the following console command (via NotesSession.SendConsoleCommand): show inetusers -xml
The resulting XML string can then be processed via the NotesDOMParser class...
You can take a look at the webadmin.ntf template which does exactly that (on the Server\Status tab, click the "Internet Users" entry). The code for all that lives in the agent called "agReadTableData$UserL2", beginning at line 503...
A more efficient way would be to write a DASPI filter which a) keeps a cache for every active http user and then makes that info available back to browsers, but that is considerably more work and harder to do, and requires the code to be written in 'C'.